home *** CD-ROM | disk | FTP | other *** search
/ Mac-Source 1994 July / Mac-Source_July_1994.iso / Other Langs / gawk-2.11 / main.c < prev    next >
C/C++ Source or Header  |  1990-09-11  |  13KB  |  575 lines

  1. /*
  2.  * main.c -- Expression tree constructors and main program for gawk. 
  3.  */
  4.  
  5. /* 
  6.  * Copyright (C) 1986, 1988, 1989 the Free Software Foundation, Inc.
  7.  * 
  8.  * This file is part of GAWK, the GNU implementation of the
  9.  * AWK Progamming Language.
  10.  * 
  11.  * GAWK is free software; you can redistribute it and/or modify
  12.  * it under the terms of the GNU General Public License as published by
  13.  * the Free Software Foundation; either version 1, or (at your option)
  14.  * any later version.
  15.  * 
  16.  * GAWK is distributed in the hope that it will be useful,
  17.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  18.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  19.  * GNU General Public License for more details.
  20.  * 
  21.  * You should have received a copy of the GNU General Public License
  22.  * along with GAWK; see the file COPYING.  If not, write to
  23.  * the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
  24.  */
  25.  
  26. #include "awk.h"
  27. #include "patchlevel.h"
  28. #include <signal.h>
  29.  
  30. extern int yyparse();
  31. extern void do_input();
  32. extern int close_io();
  33. extern void init_fields();
  34. extern int getopt();
  35. extern int re_set_syntax();
  36. extern NODE *node();
  37.  
  38. static void usage();
  39. static void set_fs();
  40. static void init_vars();
  41. static void init_args();
  42. static NODE *spc_var();
  43. static void pre_assign();
  44. static void copyleft();
  45.  
  46. /* These nodes store all the special variables AWK uses */
  47. NODE *FS_node, *NF_node, *RS_node, *NR_node;
  48. NODE *FILENAME_node, *OFS_node, *ORS_node, *OFMT_node;
  49. NODE *FNR_node, *RLENGTH_node, *RSTART_node, *SUBSEP_node;
  50. NODE *ENVIRON_node, *IGNORECASE_node;
  51. NODE *ARGC_node, *ARGV_node;
  52.  
  53. /*
  54.  * The parse tree and field nodes are stored here.  Parse_end is a dummy item
  55.  * used to free up unneeded fields without freeing the program being run 
  56.  */
  57. int errcount = 0;    /* error counter, used by yyerror() */
  58.  
  59. /* The global null string */
  60. NODE *Nnull_string;
  61.  
  62. /* The name the program was invoked under, for error messages */
  63. char *myname;
  64.  
  65. /* A block of AWK code to be run before running the program */
  66. NODE *begin_block = 0;
  67.  
  68. /* A block of AWK code to be run after the last input file */
  69. NODE *end_block = 0;
  70.  
  71. int exiting = 0;        /* Was an "exit" statement executed? */
  72. int exit_val = 0;        /* optional exit value */
  73.  
  74. #ifdef DEBUG
  75. /* non-zero means in debugging is enabled.  Probably not very useful */
  76. int debugging = 1;
  77. extern int yydebug;
  78. #endif
  79.  
  80. int tempsource = 0;        /* source is in a temp file */
  81. char **sourcefile = NULL;    /* source file name(s) */
  82. int numfiles = -1;        /* how many source files */
  83.  
  84. int strict = 0;            /* turn off gnu extensions */
  85.  
  86. int output_is_tty = 0;        /* control flushing of output */
  87.  
  88. NODE *expression_value;
  89.  
  90. /*
  91.  * for strict to work, legal options must be first
  92.  *
  93.  * Unfortunately, -a and -e are orthogonal to -c.
  94.  */
  95. #define EXTENSIONS    8    /* where to clear */
  96. #ifdef DEBUG
  97. char awk_opts[] = "F:f:v:caeCVdD";
  98. #else
  99. char awk_opts[] = "F:f:v:caeCV";
  100. #endif
  101.  
  102. #ifdef THINK_C
  103. #include <console.h>
  104. char **environ;
  105. #endif
  106.  
  107.  
  108. int
  109. main(argc, argv)
  110. int argc;
  111. char **argv;
  112. {
  113.  
  114.  
  115. #ifdef DEBUG
  116.     /* Print out the parse tree.   For debugging */
  117.     register int dotree = 0;
  118. #endif
  119.     extern char *version_string;
  120.     FILE *fp;
  121.     int c;
  122.     extern int opterr, optind;
  123.     extern char *optarg;
  124.      extern char *strrchr();
  125.      extern char *tmpnam();
  126.     extern SIGTYPE catchsig();
  127.     int i;
  128.     int nostalgia;
  129. #ifdef somtime_in_the_future
  130.     int regex_mode = RE_SYNTAX_POSIX_EGREP;
  131. #else
  132.     int regex_mode = RE_SYNTAX_AWK;
  133. #endif
  134.  
  135.     (void) signal(SIGFPE, catchsig);
  136.     (void) signal(SIGSEGV, catchsig);
  137.     
  138. #ifdef THINK_C   
  139.     /* use the ccommand interface */
  140.     
  141.     argc = ccommand(&argv);
  142.     
  143.     /* initialize environ to something safe */
  144.     
  145.     *environ++ = "";
  146.     *environ = (char *) 0;
  147. #endif
  148.  
  149.     if (strncmp(version_string, "@(#)", 4) == 0)
  150.         version_string += 4;
  151.  
  152.     myname = strrchr(argv[0], '/');
  153.     if (myname == NULL)
  154.         myname = argv[0];
  155.     else
  156.         myname++;
  157.     if (argc < 2)
  158.         usage();
  159.  
  160.     /* initialize the null string */
  161.     Nnull_string = make_string("", 0);
  162.     Nnull_string->numbr = 0.0;
  163.     Nnull_string->type = Node_val;
  164.     Nnull_string->flags = (PERM|STR|NUM|NUMERIC);
  165.  
  166.     /* Set up the special variables */
  167.  
  168.     /*
  169.      * Note that this must be done BEFORE arg parsing else -F
  170.      * breaks horribly 
  171.      */
  172.     init_vars();
  173.  
  174.     /* worst case */
  175.     emalloc(sourcefile, char **, argc * sizeof(char *), "main");
  176.  
  177.  
  178. #ifdef STRICT    /* strict new awk compatibility */
  179.     strict = 1;
  180.     awk_opts[EXTENSIONS] = '\0';
  181. #endif
  182.  
  183. #ifndef STRICT
  184.     /* undocumented feature, inspired by nostalgia, and a T-shirt */
  185.     nostalgia = 0;
  186.     for (i = 1; i < argc && argv[i][0] == '-'; i++) {
  187.         if (argv[i][1] == '-')        /* -- */
  188.             break;
  189.         else if (argv[i][1] == 'c') {    /* compatibility mode */
  190.             nostalgia = 0;
  191.             break;
  192.         } else if (STREQ(&argv[i][1], "nostalgia"))
  193.             nostalgia = 1;
  194.             /* keep looping, in case -c after -nostalgia */
  195.     }
  196.     if (nostalgia) {
  197.         fprintf (stderr, "awk: bailing out near line 1\n");
  198.         abort();
  199.     }
  200. #endif
  201.         
  202.     while ((c = getopt (argc, argv, awk_opts)) != EOF) {
  203.         switch (c) {
  204. #ifdef DEBUG
  205.         case 'd':
  206.             debugging++;
  207.             dotree++;
  208.             break;
  209.  
  210.         case 'D':
  211.             debugging++;
  212.             yydebug = 2;
  213.             break;
  214. #endif
  215.  
  216. #ifndef STRICT
  217.         case 'c':
  218.             strict = 1;
  219.             break;
  220. #endif
  221.  
  222.         case 'F':
  223.             set_fs(optarg);
  224.             break;
  225.  
  226.         case 'f':
  227.             /*
  228.              * a la MKS awk, allow multiple -f options.
  229.              * this makes function libraries real easy.
  230.              * most of the magic is in the scanner.
  231.              */
  232.             sourcefile[++numfiles] = optarg;
  233.             break;
  234.  
  235.         case 'v':
  236.             pre_assign(optarg);
  237.             break;
  238.  
  239.         case 'V':
  240.             fprintf(stderr, "%s, patchlevel %d\n",
  241.                     version_string, PATCHLEVEL);
  242.             break;
  243.  
  244.         case 'C':
  245.             copyleft();
  246.             break;
  247.  
  248.         case 'a':    /* use old fashioned awk regexps */
  249.             regex_mode = RE_SYNTAX_AWK;
  250.             break;
  251.  
  252.         case 'e':    /* use egrep style regexps, per Posix */
  253.             regex_mode = RE_SYNTAX_POSIX_EGREP;
  254.             break;
  255.  
  256.         case '?':
  257.         default:
  258.             /* getopt will print a message for us */
  259.             /* S5R4 awk ignores bad options and keeps going */
  260.             break;
  261.         }
  262.     }
  263.  
  264.     /* Tell the regex routines how they should work. . . */
  265.     (void) re_set_syntax(regex_mode);
  266.  
  267. #ifdef DEBUG
  268.     setbuf(stdout, (char *) NULL);    /* make debugging easier */
  269. #endif
  270.     if (isatty(fileno(stdout)))
  271.         output_is_tty = 1;
  272.     /* No -f option, use next arg */
  273.     /* write to temp file and save sourcefile name */
  274.     if (numfiles == -1) {
  275.         int i;
  276.  
  277.         if (optind > argc - 1)    /* no args left */
  278.             usage();
  279.         numfiles++;
  280.         i = strlen (argv[optind]);
  281.         if (i == 0) {    /* sanity check */
  282.             fprintf(stderr, "%s: empty program text\n", myname);
  283.             usage();
  284.             /* NOTREACHED */
  285.         }
  286.         sourcefile[0] = tmpnam((char *) NULL);
  287.         if ((fp = fopen (sourcefile[0], "w")) == NULL)
  288.             fatal("could not save source prog in temp file (%s)",
  289.             strerror(errno));
  290.         if (fwrite (argv[optind], 1, i, fp) == 0)
  291.             fatal(
  292.             "could not write source program to temp file (%s)",
  293.             strerror(errno));
  294.         if (argv[optind][i-1] != '\n')
  295.             putc ('\n', fp);
  296.         (void) fclose (fp);
  297.         tempsource++;
  298.         optind++;
  299.     }
  300.     init_args(optind, argc, myname, argv);
  301.  
  302.     /* Read in the program */
  303.     if (yyparse() || errcount)
  304.         exit(1);
  305.  
  306. #ifdef DEBUG
  307.     if (dotree)
  308.         print_parse_tree(expression_value);
  309. #endif
  310.     /* Set up the field variables */
  311.     init_fields();
  312.  
  313.     if (begin_block)
  314.         (void) interpret(begin_block);
  315.     if (!exiting && (expression_value || end_block))
  316.         do_input();
  317.     if (end_block)
  318.         (void) interpret(end_block);
  319.     if (close_io() != 0 && exit_val == 0)
  320.         exit_val = 1;
  321.     exit(exit_val);
  322.     /* NOTREACHED */
  323.     return exit_val;
  324. }
  325.  
  326. static void
  327. usage()
  328. {
  329.     char *opt1 = " -f progfile [--]";
  330.     char *opt2 = " [--] 'program'";
  331. #ifdef STRICT
  332.     char *regops = " [-ae] [-F fs] [-v var=val]"
  333. #else
  334.     char *regops = " [-aecCV] [-F fs] [-v var=val]";
  335. #endif
  336.  
  337.     fprintf(stderr, "usage: %s%s%s file ...\n       %s%s%s file ...\n",
  338.         myname, regops, opt1, myname, regops, opt2);
  339.     exit(11);
  340. }
  341.  
  342. /* Generate compiled regular expressions */
  343. struct re_pattern_buffer *
  344. make_regexp(s, ignorecase)
  345. NODE *s;
  346. int ignorecase;
  347. {
  348.     struct re_pattern_buffer *rp;
  349.     char *err;
  350.  
  351.     emalloc(rp, struct re_pattern_buffer *, sizeof(*rp), "make_regexp");
  352.     memset((char *) rp, 0, sizeof(*rp));
  353.     emalloc(rp->buffer, char *, 16, "make_regexp");
  354.     rp->allocated = 16;
  355.     emalloc(rp->fastmap, char *, 256, "make_regexp");
  356.  
  357.     if (! strict && ignorecase)
  358.         rp->translate = casetable;
  359.     else
  360.         rp->translate = NULL;
  361.     if ((err = re_compile_pattern(s->stptr, s->stlen, rp)) != NULL)
  362.         fatal("%s: /%s/", err, s->stptr);
  363.     free_temp(s);
  364.     return rp;
  365. }
  366.  
  367. struct re_pattern_buffer *
  368. mk_re_parse(s, ignorecase)
  369. char *s;
  370. int ignorecase;
  371. {
  372.     char *src;
  373.     register char *dest;
  374.     register int c;
  375.     int in_brack = 0;
  376.  
  377.     for (dest = src = s; *src != '\0';) {
  378.         if (*src == '\\') {
  379.             c = *++src;
  380.             switch (c) {
  381.             case '/':
  382.             case 'a':
  383.             case 'b':
  384.             case 'f':
  385.             case 'n':
  386.             case 'r':
  387.             case 't':
  388.             case 'v':
  389.             case 'x':
  390.             case '0':
  391.             case '1':
  392.             case '2':
  393.             case '3':
  394.             case '4':
  395.             case '5':
  396.             case '6':
  397.             case '7':
  398.                 c = parse_escape(&src);
  399.                 if (c < 0)
  400.                     cant_happen();
  401.                 *dest++ = (char)c;
  402.                 break;
  403.             default:
  404.                 *dest++ = '\\';
  405.                 *dest++ = (char)c;
  406.                 src++;
  407.                 break;
  408.             }
  409.         } else if (*src == '/' && ! in_brack)
  410.             break;
  411.         else {
  412.             if (*src == '[')
  413.                 in_brack = 1;
  414.             else if (*src == ']')
  415.                 in_brack = 0;
  416.  
  417.             *dest++ = *src++;
  418.         }
  419.     }
  420.     return make_regexp(tmp_string(s, dest-s), ignorecase);
  421. }
  422.  
  423. static void
  424. copyleft ()
  425. {
  426.     extern char *version_string;
  427.     char *cp;
  428.     static char blurb[] =
  429. "Copyright (C) 1989, Free Software Foundation.\n\
  430. GNU Awk comes with ABSOLUTELY NO WARRANTY.  This is free software, and\n\
  431. you are welcome to distribute it under the terms of the GNU General\n\
  432. Public License, which covers both the warranty information and the\n\
  433. terms for redistribution.\n\n\
  434. You should have received a copy of the GNU General Public License along\n\
  435. with this program; if not, write to the Free Software Foundation, Inc.,\n\
  436. 675 Mass Ave, Cambridge, MA 02139, USA.\n";
  437.  
  438.     fprintf (stderr, "%s, patchlevel %d\n", version_string, PATCHLEVEL);
  439.     fputs(blurb, stderr);
  440.     fflush(stderr);
  441. }
  442.  
  443. static void
  444. set_fs(str)
  445. char *str;
  446. {
  447.     register NODE **tmp;
  448.  
  449.     tmp = get_lhs(FS_node, 0);
  450.     /*
  451.      * Only if in full compatibility mode check for the stupid special
  452.      * case so -F\t works as documented in awk even though the shell
  453.      * hands us -Ft.  Bleah!
  454.      */
  455.     if (strict && str[0] == 't' && str[1] == '\0')
  456.         str[0] = '\t';
  457.     *tmp = make_string(str, 1);
  458.     do_deref();
  459. }
  460.  
  461. static void
  462. init_args(argc0, argc, argv0, argv)
  463. int argc0, argc;
  464. char *argv0;
  465. char **argv;
  466. {
  467.     int i, j;
  468.     NODE **aptr;
  469.  
  470.     ARGV_node = spc_var("ARGV", Nnull_string);
  471.     aptr = assoc_lookup(ARGV_node, tmp_number(0.0));
  472.     *aptr = make_string(argv0, strlen(argv0));
  473.     for (i = argc0, j = 1; i < argc; i++) {
  474.         aptr = assoc_lookup(ARGV_node, tmp_number((AWKNUM) j));
  475.         *aptr = make_string(argv[i], strlen(argv[i]));
  476.         j++;
  477.     }
  478.     ARGC_node = spc_var("ARGC", make_number((AWKNUM) j));
  479. }
  480.  
  481. /*
  482.  * Set all the special variables to their initial values.
  483.  */
  484. static void
  485. init_vars()
  486. {
  487.     extern char **environ;
  488.     char *var, *val;
  489.     NODE **aptr;
  490.     int i;
  491.  
  492.     FS_node = spc_var("FS", make_string(" ", 1));
  493.     NF_node = spc_var("NF", make_number(-1.0));
  494.     RS_node = spc_var("RS", make_string("\n", 1));
  495.     NR_node = spc_var("NR", make_number(0.0));
  496.     FNR_node = spc_var("FNR", make_number(0.0));
  497.     FILENAME_node = spc_var("FILENAME", make_string("-", 1));
  498.     OFS_node = spc_var("OFS", make_string(" ", 1));
  499.     ORS_node = spc_var("ORS", make_string("\n", 1));
  500.     OFMT_node = spc_var("OFMT", make_string("%.6g", 4));
  501.     RLENGTH_node = spc_var("RLENGTH", make_number(0.0));
  502.     RSTART_node = spc_var("RSTART", make_number(0.0));
  503.     SUBSEP_node = spc_var("SUBSEP", make_string("\034", 1));
  504.     IGNORECASE_node = spc_var("IGNORECASE", make_number(0.0));
  505.  
  506.     ENVIRON_node = spc_var("ENVIRON", Nnull_string);
  507.     
  508.     for (i = 0; environ[i]; i++) {
  509.         static char nullstr[] = "";
  510.  
  511.         var = environ[i];
  512.         val = strchr(var, '=');
  513.         if (val)
  514.             *val++ = '\0';
  515.         else
  516.             val = nullstr;
  517.         aptr = assoc_lookup(ENVIRON_node, tmp_string(var, strlen (var)));
  518.         *aptr = make_string(val, strlen (val));
  519.  
  520.         /* restore '=' so that system() gets a valid environment */
  521.         if (val != nullstr)
  522.             *--val = '=';
  523.     }
  524.  
  525. }
  526.  
  527. /* Create a special variable */
  528. static NODE *
  529. spc_var(name, value)
  530. char *name;
  531. NODE *value;
  532. {
  533.     register NODE *r;
  534.  
  535.     if ((r = lookup(variables, name)) == NULL)
  536.         r = install(variables, name, node(value, Node_var, (NODE *) NULL));
  537.     return r;
  538. }
  539.  
  540. static void
  541. pre_assign(v)
  542. char *v;
  543. {
  544.     char *cp;
  545.  
  546.     cp = strchr(v, '=');
  547.     if (cp != NULL) {
  548.         *cp++ = '\0';
  549.         variable(v)->var_value = make_string(cp, strlen(cp));
  550.     } else {
  551.         fprintf (stderr,
  552.             "%s: '%s' argument to -v not in 'var=value' form\n",
  553.                 myname, v);
  554.         usage();
  555.     }
  556. }
  557.  
  558. SIGTYPE
  559. catchsig(sig, code)
  560. int sig, code;
  561. {
  562. #ifdef lint
  563.     code = 0; sig = code; code = sig;
  564. #endif
  565.     if (sig == SIGFPE) {
  566.         fatal("floating point exception");
  567.     } else if (sig == SIGSEGV) {
  568.         msg("fatal error: segmentation fault");
  569.         /* fatal won't abort() if not compiled for debugging */
  570.         abort();
  571.     } else
  572.         cant_happen();
  573.     /* NOTREACHED */
  574. }
  575.